Out of boundary paths¶
Time: O(NxMxN); Space: O(MxN); medium
There is an m by n grid with a ball. Given the start coordinate (i,j) of the ball, you can move the ball to adjacent cell or cross the grid boundary in four directions (up, down, left, right). However, you can at most move N times.
Find out the number of paths to move the ball out of grid boundary.
The answer may be very large, return it after mod 109 + 7.
Example 1:
Input: m = 2, n = 2, N = 2, i = 0, j = 0
Output: 6
Example 2:
Input: m = 1, n = 3, N = 3, i = 0, j = 1
Output: 12
Notes:
Once you move the ball out of boundary, you cannot move it back.
The length and height of the grid is in range [1,50].
N is in range [0,50].
Hints:
WIll traversing every path is fesaible? There are many possible paths for a small matrix. Try to optimize it.
Can we use some space to store the number of paths and updating them after every move?
One obvious thing: ball will go out of boundary only by crossing it. Also, there is only one possible way ball can go out of boundary from boundary cell except corner cells. From corner cell ball can go out in two different ways. Can you use this thing to solve the problem?
[5]:
class Solution1(object):
"""
Time: O(N*M*N)
Space: O(M*N)
"""
def findPaths(self, m, n, N, x, y):
"""
:type m: int
:type n: int
:type N: int
:type x: int
:type y: int
:rtype: int
"""
M = 1000000000 + 7
dp = [[[0 for _ in range(n)] for _ in range(m)] for _ in range(2)]
for moves in range(N):
for i in range(m):
for j in range(n):
dp[(moves + 1) % 2][i][j] = (((1 if (i == 0) else dp[moves % 2][i - 1][j]) + \
(1 if (i == m - 1) else dp[moves % 2][i + 1][j])
) % M + \
((1 if (j == 0) else dp[moves % 2][i][j - 1]) + \
(1 if (j == n - 1) else dp[moves % 2][i][j + 1])
) % M
) % M
return dp[N % 2][x][y]
[6]:
s = Solution1()
m = 2
n = 2
N = 2
x = 0
y = 0
assert s.findPaths(m, n, N, x, y) == 6
m = 1
n = 3
N = 3
x = 0
y = 1
assert s.findPaths(m, n, N, x, y) == 12
See also:¶
https://leetcode.com/problems/out-of-boundary-paths
https://www.lintcode.com/problem/out-of-boundary-paths/description
Related problems:¶
https://leetcode.com/problems/knight-probability-in-chessboard/